After Annotation
Marks a action method that needs to be called after the main action method and the result was
executed. Return value is ignored.
Usage
The After annotation can be applied at method level.
Parameters
no parameters
Examples
public class SampleAction extends ActionSupport {
@After
public void isValid() throws ValidationException {
}
public String execute() {
return SUCCESS;
}
}
|